跳到主要内容

Fortran 用模块共享数据

模块:一个独立编译的程序单元,包含了希望在程序单元间共享的数据的定义。

如果使用了 use 语句,就可以访问这些数据。

module shared
implicit none
save
integer, parameter :: num_vals = 5

use 语句应该紧接着 program 或者 subroutine 语句。